home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / rexx / 1510 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  1.1 KB

  1. Path: fiesta.srl.ford.com!usenet
  2. From: Dave Boll <dboll@elvis.srl.ford.com>
  3. Newsgroups: comp.lang.rexx
  4. Subject: Re: Starting OS/2 REXX program but not in Window list
  5. Date: Tue, 19 Mar 1996 12:51:36 -0500
  6. Organization: Scientific Research Labs, Ford Motor Company
  7. Distribution: inet
  8. Message-ID: <314EF428.3877@elvis.srl.ford.com>
  9. References: <4ikmum$fvg@nntp.atlanta.com>
  10. NNTP-Posting-Host: sl1045.srl.ford.com
  11. Mime-Version: 1.0
  12. Content-Type: text/plain; charset=us-ascii
  13. Content-Transfer-Encoding: 7bit
  14. X-Mailer: Mozilla 2.0GoldB1 (WinNT; I)
  15.  
  16. > Anyone know how to start an OS/2 Rexx program that won't show up in the
  17. > Window List?  I don't mind the program being in the Minimizied Window Viewer.
  18.  
  19. If your rexx program doesn't require any user interaction, you 
  20. can detach it to run in
  21. the background:
  22.  
  23. '@detach rexxpgm.cmd 1>nul 2>nul'
  24.  
  25. You can also use the "rxstartsession()" function in the RXU 
  26. function package which
  27. allows you to specify what kind of session your rexx program 
  28. (actually cmd.exe) is
  29. to run in (which I think includes "invisible" or something like 
  30. that).
  31.